DataSource for Entity Framework in WPF
C1.LiveLinq.Indexing Namespace / Index<T> Class
Properties Methods


In This Topic
    Index<T> Class Members
    In This Topic

    The following tables list the members exposed by Index<T>.

    Public Properties
     NameDescription
    Public PropertyGets the indexing algorithm used by the index. (Inherited from C1.LiveLinq.Indexing.IndexDefinition<T>)
    Public PropertyGets the number of elements in the indexed collection.  
    Public PropertyGets the number of distinct key values in all items of this collection.  
    Public PropertyGets a value that indicates whether the key used in this index is a unique key for the collection. (Inherited from C1.LiveLinq.Indexing.IndexDefinition<T>)
    Public PropertyGets the expression used to obtain key value from an element of the indexed collection. (Inherited from C1.LiveLinq.Indexing.IndexDefinition<T>)
    Public PropertyGets the type of the index key. (Inherited from C1.LiveLinq.Indexing.IndexDefinition<T>)
    Public PropertyGets the locale information used to compare strings in the index. (Inherited from C1.LiveLinq.Indexing.IndexDefinition<T>)
    Public PropertyGets the root index in an index/subindex hierarchy. (Inherited from C1.LiveLinq.Indexing.IndexDefinition<T>)
    Public PropertyGets the collection of subindexes added to this index. (Inherited from C1.LiveLinq.Indexing.IndexDefinition<T>)
    Top
    Public Methods
     NameDescription
    Public Method

    Returns a value that indicates whether the indexed collection contains an item with the given key value.

    Implements IIndexScanner(T).ContainsKey(object)

     
    Public Method

    Finds items with the specified key value.

    Implements IIndexScanner(T).Find(object)

     
    Public Method

    Finds items with key values in the interval between the specified values.

    Implements IIndexScanner(T).FindBetween(object,bool,object,bool,Order)

     
    Public Method

    Finds items with keys greater than the specified value.

    Implements IIndexScanner(T).FindGreater(object,bool,Order)

     
    Public Method

    Finds items containing any of the specified key values.

    Implements FindKeys(IEnumerable,Order)

     
    Public Method

    Finds items with keys less than the specified value.

    Implements IIndexScanner(T).FindLess(object,bool,Order)

     
    Public Method

    Finds items with string key values starting with the specified string.

    Implements IIndexScanner(T).FindStartingWith(string,Func(string, bool),Order)

     
    Public MethodOverloaded. 

    Correlates the items of this indexed collection with the items of another indexed collection and groups the results by the item of this collection.

    Implements IIndexScanner(T).GroupJoin

     
    Public MethodOverloaded. 

    Correlates the items of this indexed collection with the items of another sequence and returns the combined items with matching keys.

    Implements IIndexScanner(T).Join

     
    Top
    See Also